:root {
    --primary-color: #D6AD45;
    /* Gold from Logo */
    --primary-dark: #B58E2D;
    --primary-light: #FCEFC7;
    --secondary-color: #381212;
    /* Deep Wine/Brown from Logo Background */
    --text-color: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-alt: #F8F8F8;
    /* Light gray for sections */
    --border-color: #E5E5E5;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --border-radius: 12px;
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: linear-gradient(135deg, #f9f9f9 0%, #e8ecf1 100%);
    /* Subtle gradient/off-white */
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-sm) 0;
    border-bottom: var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo-img {
    height: 50px;
    /* Adjust as needed */
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: var(--spacing-sm);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-shop {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-color);
}

.btn-shop:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent */
    border-radius: 20px;
    padding: 5px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 150px;
}

.search-box button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-light);
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.search-results {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    border: var(--glass-border);
}

.search-results.active {
    display: block;
}

.search-item {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.search-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.search-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.search-item-info h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    margin-bottom: 2px;
}

/* Hero Modern */
.hero-modern {
    padding: 100px 0 60px 0;
    /* Reduced top padding */
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Animations Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 173, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(214, 173, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 173, 69, 0);
    }
}

/* Text Content */
.hero-text-content {
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(214, 173, 69, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: 1px solid rgba(214, 173, 69, 0.2);
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-main-title .text-highlight {
    color: var(--primary-color);
    position: relative;
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary-hero {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(214, 173, 69, 0.3);
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-hero:hover {
    background: var(--secondary-color);
}

/* Continuing Hero Styles ... */

.btn-secondary-hero {
    background: transparent;
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary-hero:hover {
    border-color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.02);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.divider-vertical {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Visual Content */
.hero-visual-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoomEffect 1.5s ease-out;
    /* Slight separate entrance */
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.circle-backdrop {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(214, 173, 69, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s infinite;
}

.main-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    /* Changed to cover for full photo */
    border-radius: 20px;
    /* Rounded corners for photo */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
    animation: float 6s ease-in-out infinite;
}

.floating-card-info {
    position: absolute;
    bottom: 50px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 5s ease-in-out infinite reverse;
    /* Float reverse */
}

.floating-card-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(214, 173, 69, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.floating-card-info span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsiveness for Hero */
@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 3rem;
    }

    .hero-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-modern {
        padding: 120px 0 60px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-visual-content {
        margin-top: 40px;
    }

    .circle-backdrop {
        width: 300px;
        height: 300px;
    }
}

/* Sections General */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Cards */
/* Post em Destaque - Design Premium */
.latest-post-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(214, 173, 69, 0.1);
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.latest-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--primary-dark),
            var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.latest-post-card::after {
    content: '⭐ EM DESTAQUE';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(214, 173, 69, 0.4);
    z-index: 10;
}

.latest-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(214, 173, 69, 0.2);
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.latest-post-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.latest-post-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.latest-post-card:hover .latest-post-image-wrapper::before {
    opacity: 1;
}

.latest-post-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-post-card:hover .latest-post-img {
    transform: scale(1.08);
}

.latest-post-content {
    padding: var(--spacing-md);
    position: relative;
}

.post-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    line-height: 1.3;
    transition: color 0.3s;
}

.latest-post-card:hover .post-title {
    color: var(--primary-dark);
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    line-height: 1.7;
    font-size: 1.05rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(214, 173, 69, 0.3);
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(214, 173, 69, 0.5);
}

.btn-read-more::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-read-more:hover::after {
    transform: translateX(3px);
}

/* Recent Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 posts per row */
    gap: var(--spacing-sm);
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Post Card (Recent) - Clean Style */
.post-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Subtle border */
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-card-img-wrapper {
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.post-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: visible;
    animation: pulse 2s ease-in-out infinite;
}

.post-category:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    animation: none;
}

.post-category i {
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

/* Animação de pulso */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Badges completos para página de posts (com texto) */
.posts-page .post-category {
    width: auto;
    height: auto;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    animation: none;
}

.posts-page .post-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.posts-page .post-category i {
    margin-right: 4px;
    font-size: 0.65rem;
}

/* Animação de pulso */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Cores específicas por categoria */
.category-casamento {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.category-tendencias {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
}

.category-dicas {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

.category-cuidados {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: white;
}

.category-institucional {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.category-noivado {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
}

.category-curiosidades {
    background: linear-gradient(135deg, #fab1a0, #ff7675);
    color: white;
}

.post-card-title {
    font-family: var(--font-body);
    /* Reference looks modern sans */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: none;
    /* Removed text shadow */
}

.post-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    /* Pushes footer down */
}

.post-footer-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: auto;
    /* Ensures it stays at bottom if content varies */
    padding-top: 15px;
    /* border-top: 1px solid #f0f0f0; Optional separator */
}

/* Info Banner */
/* Benefits Bar */
.benefits-bar {
    background: var(--white);
    padding: 2rem 0;
    margin-top: -20px;
    /* Slight overlap or pull up? Maybe just 0 margin */
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    justify-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    /* stroke? FontAwesome solid is filled. Gold color is good. */
}

.benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.1;
}

.benefit-text p {
    font-size: 0.85rem;
    color: #999;
    text-transform: lowercase;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .benefit-item {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        justify-items: start;
        /* Align left on mobile? Or center? Center is usually better for benefits */
        justify-items: center;
    }
}

/* Popular Posts (2 rows, 4 per row = grid of 4 cols) */
.posts-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.compact-post-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 400px;
    /* Same height as regular posts for consistency */
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.compact-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.compact-post-card:hover img {
    transform: scale(1.05);
}

.compact-post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Full height to allow gradient from bottom */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
    /* Always visible now, not just on hover if previously so */
    transition: all 0.3s;
}

.compact-post-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
}

/* Quality Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.quality-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.quality-list {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 30px;
    /* Pill shape standard padding */
    background: #FFFFFF;
    border-radius: 50px;
    /* Matching Hero Button Shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(214, 173, 69, 0.1);
    /* Subtle Gold Border */
    position: relative;
    overflow: hidden;
    cursor: default;
}

.quality-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    /* Fill effect instead of bar */
    background: linear-gradient(90deg, rgba(214, 173, 69, 0.05), transparent);
    transition: width 0.5s ease;
    z-index: 0;
}

.quality-list li:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 40px rgba(214, 173, 69, 0.15);
    /* Gold glow shadow */
    border-color: rgba(214, 173, 69, 0.4);
}

.quality-list li:hover::before {
    width: 100%;
}

.quality-list i {
    color: var(--white);
    font-size: 1rem;
    background: linear-gradient(135deg, #D4AF37, #AA8C2C);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.quality-list li span {
    font-family: var(--font-heading);
    /* Matching Hero Typography */
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--secondary-color);
    z-index: 1;
    position: relative;
    letter-spacing: 0.5px;
}

/* Quality Section Image */
/* Quality Section Image */
.quality-image-wrapper {
    position: relative;
    height: 450px;
    transform: perspective(1000px) rotateY(-5deg);
    /* Slight 3D tilt for style */
    transition: transform 0.5s ease;
    z-index: 1;
    /* overflow: visible by default */
}

.quality-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Stacked Photos Effect */
.quality-image-wrapper::before,
.quality-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 4px solid #FFFFFF;
    /* Photo border effect */
}

.quality-image-wrapper::before {
    transform: rotate(-4deg) translateX(-10px);
    z-index: -1;
    background: #f8f8f8;
    /* Slightly darker */
}

.quality-image-wrapper::after {
    transform: rotate(5deg) translateX(10px);
    z-index: -2;
    background: #f0f0f0;
}

.quality-image-wrapper:hover::before {
    transform: rotate(-6deg) translateX(-15px);
}

.quality-image-wrapper:hover::after {
    transform: rotate(7deg) translateX(15px);
}

.quality-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    border-radius: 20px;
    /* Moved from wrapper */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Stronger shadow on main img */
    position: relative;
    z-index: 1;
}

.quality-image-wrapper:hover .quality-img {
    transform: scale(1.02);
}

.quality-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    /* Floating off-edge style */
    background: #FFFFFF;
    padding: 15px 30px;
    border-radius: 0 50px 50px 0;
    /* Pill shape on right */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Videos */
/* Videos Section */
.videos-section {
    background: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: var(--spacing-md);
}

.video-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Wrapper responsivo para iframe 16:9 */
.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-info {
        padding: 15px;
    }
}


/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #999;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 24px;
}

.logo-img-footer {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img-footer:hover {
    opacity: 0.85;
}

.footer-slogan {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #aaa;
    max-width: 320px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li a {
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-col p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    line-height: 1.7;
}

.footer-col p i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 0.95rem;
    min-width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    color: var(--white);
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsiveness */
@media (max-width: 900px) {
    .posts-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-actions .search-box input {
        width: 0;
        padding: 0;
        opacity: 0;
        transition: width 0.3s;
    }

    .header-actions .search-box:focus-within input,
    .header-actions .search-box.active input {
        width: 150px;
        padding: 0 5px;
        opacity: 1;
    }

    .nav {
        display: none;
        /* Add JS toggle for mobile menu later */
    }

    .mobile-menu-btn {
        display: block;
    }

    .latest-post-card {
        grid-template-columns: 1fr;
    }

    .latest-post-img {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== MODALS ADMIN ==================== */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.admin-modal.active {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.admin-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.admin-modal.active .admin-modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    transform: rotate(90deg);
}

/* Modal de Autenticação */
.auth-modal-content {
    width: 450px;
    padding: 60px 40px;
}

.auth-container {
    text-align: center;
}

.auth-container input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.auth-container input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214, 173, 69, 0.1);
}

.btn-auth-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-auth-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 173, 69, 0.3);
}

kbd {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-family: monospace;
    font-size: 0.85rem;
}

/* Modal do Painel Admin */
.admin-panel-content {
    width: 900px;
    padding: 0;
}

.admin-modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.admin-modal-header h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.admin-modal-header i {
    color: var(--primary-color);
}

/* Tabs */
.admin-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    padding: 0 40px;
}

.admin-tab {
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.admin-tab:hover {
    color: var(--primary-color);
}

.admin-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.admin-tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Formulário */
.form-row {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214, 173, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-upload-admin {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-upload-admin:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.image-preview-admin {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px dashed #ddd;
}

.image-preview-admin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-admin-primary {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-admin-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 173, 69, 0.3);
}

.btn-admin-secondary {
    padding: 15px 30px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-admin-secondary:hover {
    background: #5a6268;
}

/* Gerenciador de Posts */
.posts-manager {
    min-height: 400px;
}

.manager-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.manager-header h3 {
    margin: 0;
    color: var(--secondary-color);
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    cursor: pointer;
}

.posts-manager-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post-manager-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.post-manager-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-manager-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-manager-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-manager-info {
    flex: 1;
}

.post-manager-info h4 {
    margin: 0 0 10px 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.post-manager-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.badge-category {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
}

.post-manager-actions {
    display: flex;
    gap: 10px;
}

.btn-icon-edit,
.btn-icon-delete {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-icon-edit {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-icon-edit:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-2px);
}

.btn-icon-delete {
    background: #ffebee;
    color: #d32f2f;
}

.btn-icon-delete:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-2px);
}

/* Responsividade dos Modais */
@media (max-width: 950px) {
    .admin-panel-content {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .auth-modal-content {
        width: 90%;
        padding: 40px 30px;
    }

    .admin-modal-header {
        padding: 20px;
    }

    .admin-tabs {
        padding: 0 20px;
    }

    .admin-tab-content {
        padding: 20px;
    }

    .post-manager-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-manager-meta {
        flex-wrap: wrap;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 60px 0;
    scroll-margin-top: 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

/* Formulário */
.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
}

.form-group-contact label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214, 173, 69, 0.1);
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-contact-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 173, 69, 0.3);
}

/* Informações de Contato */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

/* Redes Sociais */
.contact-social {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-social h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link-contact {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s;
}

.social-link-contact.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link-contact.facebook {
    background: #1877f2;
}

.social-link-contact.whatsapp {
    background: #25d366;
}

.social-link-contact:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Botão WhatsApp CTA */
.btn-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: #25d366;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta i {
    font-size: 1.5rem;
}

/* Mapa */
.contact-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row-contact {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 25px;
    }

    .contact-subtitle {
        font-size: 1.3rem;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }
}