/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores baseada na imagem fornecida */
    --red: #c62828;
    --teal: #12999d;
    --yellow: #fff3a0; /* Amarelo mais areia/suave */
    --yellow-bright: #fff3a0; /* Amarelo mais claro para destacar o sol */
    --cream: #f3eac0;
    --dark-teal: #084d50;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    
    /* Fontes */
    --font-primary: 'Poppins', sans-serif;
    
    /* Sombras */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(243, 234, 192, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--yellow) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: transparent;
    padding: 30px;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.hero-logo {
    height: 320px;
    width: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: var(--teal);
    border-radius: 50% 50% 0 0;
    animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) rotate(1deg);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.story-section {
    margin-bottom: 60px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.about-text.highlight {
    background: linear-gradient(135deg, var(--cream), var(--yellow));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--red);
    font-weight: 500;
}

.mission-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--cream), rgba(254, 201, 76, 0.3));
    border-radius: 20px;
}

.mission-header {
    text-align: center;
    margin-bottom: 40px;
}

.surf-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.mission-header h3 {
    font-size: 2rem;
    color: var(--red);
    font-weight: 600;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--dark-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.mission-item h4 {
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.vision-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--teal), var(--dark-teal));
    border-radius: 20px;
    color: var(--white);
}

.vision-section h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--cream);
}

/* Values Section */
.values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, var(--cream));
}

.values-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-card:nth-child(5) {
    /* Quinta carta centralizada na última linha */
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--red);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal), var(--dark-teal));
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact .section-title {
    color: var(--white);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 50px;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.contact-btn i {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.whatsapp i {
    background: #25D366;
    border-radius: 15px;
}

.instagram i {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    padding: 50px 0;
    text-align: center;
    border-top: 3px solid var(--teal);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-text {
    color: var(--cream);
    font-size: 0.9rem;
    max-width: 600px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--teal);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.social-link:nth-child(1) {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link:nth-child(2) {
    background: #25D366;
}

.social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #e08422 0%,#d5572b 25%,#cb1632 50%,#bb1255 75%,#ab0777 100%);
}

.social-link:nth-child(2):hover {
    background: #20b858;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-section,
    .vision-section {
        padding: 25px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .about-text {
        text-align: left;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .contact-btn {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .hero-logo {
        height: 200px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.floating-card {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.story-section .about-text {
    animation: fadeInUp 0.8s ease-out both;
}

.story-section .about-text:nth-child(2) {
    animation-delay: 0.2s;
}

.story-section .about-text:nth-child(3) {
    animation-delay: 0.4s;
}

.story-section .about-text:nth-child(4) {
    animation-delay: 0.6s;
}

.story-section .about-text:nth-child(5) {
    animation-delay: 0.8s;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}