/* =========================
   TIPOGRAFIA E CORPO
========================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.8; /* mais espaçamento entre linhas */
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-size: 18px; /* tamanho base maior */
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #222;
}

/* =========================
   NAVBAR
========================= */
nav {
    background-color: #ffffff;
    padding: 20px 60px;
    display: flex;
    justify-content: flex-start; /* alinhado à esquerda */
    gap: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    transition: color 0.3s, transform 0.3s;
}

nav a:hover {
    color: #66a669;
    transform: scale(1.1);
}

/* =========================
   CONTAINER CENTRAL
========================= */
.containerrr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* =========================
   HEADER
========================= */
.row.align-items-left p {
    font-size: 1.5rem;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
}

.row.align-items-left h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.row.align-items-left .col-md-7 p {
    font-size: 1.5rem !important;
    line-height: 2 !important;
    color: #444 !important;
    margin-bottom: 20px;
}

/* =========================
   CAROUSEL
========================= */
#carouselExampleIndicators,
#carouselPalcos {
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

#carouselExampleIndicators img,
#carouselPalcos img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

/* =========================
   MAIN
========================= */
main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-size: 1.4rem;
    color: #333;
}

/* =========================
   SEÇÃO PALCOS
========================= */
.palcos-section {
    background-color: #fff;
    padding: 50px 30px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.palcos-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    text-align: center;
}

.palcos-section p {
    font-size: 1.3rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.palcos-section .btn-primary {
    background-color: #66a669;
    border: none;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 10px;
    transition: background 0.3s;
}

.palcos-section .btn-primary:hover {
    background-color: #519255;
}

/* =========================
   SEÇÃO CONTACTOS
========================= */
.contact-section {
    background-color: #f5f7fa;
    padding: 100px 30px;
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.contact-section p {
    font-size: 1.4rem;
    color: #444;
    max-width: 650px;
    margin: 0 auto 40px auto;
    text-align: center;
}

/* CARDS DE CONTACTO */
.contact-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.contact-card .icon {
    font-size: 3rem;
    color: #66a669;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1.2rem;
    color: #444;
    margin: 0;
}

.contact-card a {
    color: #66a669;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #519255;
}

/* =========================
   FOOTER
========================= */
footer {
    background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
    padding: 60px 30px;
    color: #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.footer-grid h4 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
    color: #444;
    font-size: 1rem;
}

.footer-grid a:hover {
    color: #66a669;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    color: #666;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {

    /* Base */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Navbar */
    nav {
        flex-direction: row;
        justify-content: flex-start; /* esquerda no mobile */
        padding: 15px 20px;
        gap: 15px;
    }

    nav a {
        font-size: 16px;
    }

    /* Container */
    .containerrr {
        padding: 0 20px;
    }

    /* Header */
    .row.align-items-left {
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 10px;
    }

    .row.align-items-left h1 {
        font-size: 2.2rem;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .row.align-items-left p,
    .row.align-items-left .col-md-7 p {
        font-size: 1.2rem !important;
        line-height: 1.8 !important;
        margin-top: 0;
    }

    .row.align-items-left .col-md-5 {
        margin-top: 40px;
        margin-bottom: 4px;
        display: flex;
        justify-content: center;
    }

    .row.align-items-left br {
        display: none;
    }

    /* Carousel */
    #carouselExampleIndicators,
    #carouselPalcos {
        margin: 30px auto;
        border-radius: 12px;
    }

    #carouselExampleIndicators img,
    #carouselPalcos img {
        max-height: 300px;
    }

    /* Reduz padding da secção do carousel */
    .palcos-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    /* Main */
    main {
        margin: 30px auto;
        font-size: 1.2rem;
    }

    /* Palcos */
    .palcos-section h2 {
        font-size: 2rem;
    }

    .palcos-section p {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }

    .palcos-section .btn-primary {
        font-size: 1.1rem;
        padding: 12px 22px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    /* Contactos */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 35px 20px;
        margin-bottom: 25px;
    }

    .contact-card .icon {
        font-size: 2.5rem;
    }

    .contact-card h4 {
        font-size: 1.3rem;
    }

    .contact-card p {
        font-size: 1.1rem;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    .footer-grid {
        gap: 20px;
        text-align: center;
    }

    .footer-grid h4 {
        font-size: 1.2rem;
    }

    .footer-grid p,
    .footer-grid a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

    /* Imagem do header no mobile */
    .row.align-items-left .col-md-5 img {
        max-width: 50%;
        height: auto;
    }
}
