/*
Theme Name: Embaixadores
Theme URI: https://indusbello.co
Author: behance.net/weeys
Description: Tema personalizado para a landing page de Recompensas e Indicações.
Version: 1.0
Text Domain: behance.net/weeys
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --purple: #663399;
    --orange: #00C4AF;
    --yellow: #FFFFFF;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
}

/* Header */
header {
    background: linear-gradient(-135deg, #663399 15%, #552684 65%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	min-height: 80px;
}

.logo {
    display: flex;
	align-items: center;
}
.logo img {
	max-height: 48px;
	width: auto;
	display: block;
}

.logo span { color: var(--orange); }

nav a {
    margin: 0 22px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: #00C4AF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 70%;
}

.painel-btn {
    background: #00C4AF;
    color: #FFFFFF;
    padding: 10px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}
.painel-btn {
	transition: all 0.3s ease;
}

.painel-btn:hover {
	background: #48f2e0 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 196, 175, 0.4) !important;
}

@media (max-width: 768px) {

  .top-bar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  nav {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
  }

  .painel-btn {
    width: 100%;
    text-align: center;
  }

}

.hero {
    display: flex;
    align-items: center;
    padding: 80px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    background: linear-gradient(-180deg, #ffffff 15%, #ffffff 45%);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.05;
    margin-bottom: 25px;
	margin-right: 60px;
	margin-left: -30px;
}

.hero-content h1 span {
    color: var(--orange);
    font-size: 56px;
}

.hero-content p {
    font-size: 18px;
    max-width: 520px;
    margin-bottom: 30px;
	margin-left: -30px;
	text-align: justify;
	line-height: 1.5;
}

.hero-image img {
    max-width: 105%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
	
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--purple);
    color: white;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(107,70,193,0.3);
}

.benefit-card h3 {
    font-size: 19px;
    margin: 15px 0 10px;
}

.benefit-car img {
	width: 68px;
	height: 68px;
	margin 0 auto 20px;
	display: block;
	object-fit: contain;
}
@media (max-widht: 992px) {
	.benefit-card img {
		width: 58px;
		height: 58px;
		margin-bottom: 16px;
	}
}
@media (max-widht: 576px) {
	.benefit-card img {
		width: 52px;
		height: 52px;
		margin-bottom: 14px;
	}
}

.main-content {
    display: flex;
    gap: 60px;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.form-column {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    min-width: 340px;
}

.form-column h3 {
    color: var(--orange);
    margin-bottom: 25px;
}

form input, form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 16px;
}

button {
    background: #000;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.right-column {
    flex: 1;
    min-width: 320px;
	text-align: justify;
	line-height: 1.5; 
}

.girl-image img {
    max-width: 100%;
    border-radius: 20px;
}

.bottom-section {
    background: #fff;
    padding: 90px 5%;
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.man-image img {
    max-width: 340px;
    border-radius: 22px;
}

.panel-text h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.panel-text .highlight {
    color: var(--orange);
}

.btn-panel {
    background: var(--purple);
    color: white;
    padding: 18px 55px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 35px;
}
.painel-btn {
	transition: all 0.6s ease;
}

.painel-btn:hover {
	transform: translatey(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	background: #e6b800
}

footer {
    background: linear-gradient(-135deg, #663399 15%, #552684 65%);
    color: white;
    text-align: center;
    padding: 20px 20px 10px;
    margin-top: 0px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content p {
    margin: 6px 0;
    font-size: 15px;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-content a:hover {
    text-decoration: underline;
    color: #fff9e6;
}

@media (max-width: 992px) {
    footer {
        margin-top: 80px;
        padding: 50px 20px 40px;
    }
}

.benefit-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-70%);
    z-index: 1000;
    background: #00c4af;
    padding: 25px 10px;
    width: 60px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-sidebar a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.social-sidebar a:hover {
    background: #48f2e0;
    color: #FFFFFF;
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .social-sidebar {
        display: none !important;
    }
}

.left-column h2,
.left-column h3 {
	line-height: 1.2;
	margin-bottom:10px;
}