/* Paola Conecta - Design System */

:root {
    /* Brand Colors */
    --primary-color: #D05A6E;
    /* Rosa Terracota - Warmth */
    --secondary-color: #9DBE9F;
    /* Verde Salvia - Growth/Healing */
    --accent-color: #A8DADC;
    /* Azul suave - Calm (Optional accent) */
    --text-color: #575757;
    /* Gris Piedra - Professional text */
    --heading-color: #2C3E50;
    /* Darker grey for headings */
    --bg-color: #F9F4EF;
    /* Arena Claro - Background */
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-width: 1200px;

    /* Shadows & Radius */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.t-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(208, 90, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(208, 90, 110, 0.4);
    background-color: #c0485d;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background-color: rgba(249, 244, 239, 0.98);
    /* Slightly more opaque */
    backdrop-filter: blur(10px);
    padding: 10px 0;
    /* Reduced padding to balance the large logo */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    margin: 0;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
        margin: 0;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Header space */
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    width: 80%;
    border-radius: 30px 0 30px 0;
    box-shadow: 20px 20px 0 var(--secondary-color);
    object-fit: cover;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: var(--section-padding);
}

.services h2 {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(208, 90, 110, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.price-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 15px;
    color: var(--heading-color);
}

/* Philosophy / Method */
.method {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.method h2 {
    color: var(--white);
}

.method-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    width: 250px;
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
    background-color: #FDFBF8;
    /* Very subtle difference from main bg */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(157, 190, 159, 0.2);
    /* Secondary color faint */
    color: #7DA680;
    /* Darker green */
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-container {
    display: flex;
    gap: 50px;
    background: var(--bg-color);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.contact-info {
    flex: 1;
    padding: 60px;
    text-align: left;
    /* Fix alignment */
}

.contact-map {
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.location-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card iframe {
    flex: 1;
    width: 100%;
    height: 300px;
    /* Base height */
    border: none;
}

.location-actions {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.btn-location {
    display: block;
    width: 100%;
    background-color: var(--heading-color);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    /* Slightly different radius for this button */
    transition: all 0.3s ease;
}

.btn-location:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mb-50 {
    margin-bottom: 50px;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cert-item {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
    box-shadow: var(--card-shadow);
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-box {
    background: var(--bg-color);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
}


/* Footer */
.footer {
    background-color: #2C3E50;
    color: #ecf0f1;
    padding: 50px 20px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #bdc3c7;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        flex-direction: column-reverse;
        height: auto;
        padding-bottom: 50px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .contact-info {
        padding: 40px;
    }
}

/* Sharing Buttons */
.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0 40px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.share-whatsapp { background-color: #25D366; }
.share-facebook { background-color: #1877F2; }
.share-link { background-color: #7f8c8d; }

/* Soft CTA Block */
.soft-cta {
    background: #F9F4EF;
    border: 1px dashed var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    margin: 50px 0;
    text-align: center;
}

.soft-cta p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.soft-cta .share-buttons {
    margin-bottom: 25px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 25px 0;
}